home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / bbs / tdk_v136.zip / OVERXMS.PAS < prev    next >
Pascal/Delphi Source File  |  1996-12-14  |  658b  |  34 lines

  1. {
  2.  ▀▀▀▀▀▀▀▀  ▀▀▀▀▀▀    ▀▀   ▀▀
  3.    ▀▀     ▀▀   ▀▀   ▀▀  ▀▀
  4.   ▀▀     ▀▀   ▀▀▀  ▀▀▀▀▀  The DoorKit!
  5.  ▀▀     ▀▀   ▀▀   ▀▀  ▀▀
  6. ▀▀     ▀▀▀▀▀▀    ▀▀    ▀▀
  7. The BBS Door Development Kit By The People - For The People!
  8.  
  9.  
  10.    Feel free to modify or optimize this code at will. All I ask is that if
  11.    find a better way to do things (and you will), please send me a copy of
  12.    your modifications. Thanks in advance!....Larry L. Athey....}
  13.  
  14. UNIT OVERXMS;
  15.  
  16. {$O-}
  17.  
  18. INTERFACE
  19.  
  20. USES OVERLAY;
  21.  
  22. CONST
  23.   ovrNoXMSDriver = - 7;
  24.   ovrNoXMSMemory = - 8;
  25.  
  26. PROCEDURE OvrInitXMS;
  27.  
  28. IMPLEMENTATION
  29.  
  30. PROCEDURE OvrInitXMS; EXTERNAL;
  31. {$L OVERXMS.OBJ }
  32.  
  33. END.
  34.